From 7f2ad4a885677a70ff72f0533508a9053705d76e Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Sun, 22 May 2005 22:28:39 +0000 Subject: [PATCH] Map VK_APPS to GDK_Menu. (#172383, Ivan Wong) 2005-05-23 Tor Lillqvist * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to GDK_Menu. (#172383, Ivan Wong) --- ChangeLog | 3 +++ ChangeLog.pre-2-10 | 3 +++ ChangeLog.pre-2-8 | 3 +++ gdk/win32/gdkkeys-win32.c | 2 ++ 4 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index 366ee2aa04..6cfd9fa0ec 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2005-05-23 Tor Lillqvist + * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to + GDK_Menu. (#172383, Ivan Wong) + * gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one of the special cases this function takes care of, use it as such. This takes care of for instance the Bengali Virama, see bug diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 366ee2aa04..6cfd9fa0ec 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,8 @@ 2005-05-23 Tor Lillqvist + * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to + GDK_Menu. (#172383, Ivan Wong) + * gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one of the special cases this function takes care of, use it as such. This takes care of for instance the Bengali Virama, see bug diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 366ee2aa04..6cfd9fa0ec 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,5 +1,8 @@ 2005-05-23 Tor Lillqvist + * gdk/win32/gdkkeys-win32.c (handle_special): Map VK_APPS to + GDK_Menu. (#172383, Ivan Wong) + * gdk/win32/gdkkeys-win32.c (handle_dead): If the keysym isn't one of the special cases this function takes care of, use it as such. This takes care of for instance the Bengali Virama, see bug diff --git a/gdk/win32/gdkkeys-win32.c b/gdk/win32/gdkkeys-win32.c index 1c91fe75c3..ee144d9fe4 100644 --- a/gdk/win32/gdkkeys-win32.c +++ b/gdk/win32/gdkkeys-win32.c @@ -144,6 +144,8 @@ handle_special (guint vk, *ksymp = GDK_Meta_L; break; case VK_RWIN: *ksymp = GDK_Meta_R; break; + case VK_APPS: + *ksymp = GDK_Menu; break; case VK_MULTIPLY: *ksymp = GDK_KP_Multiply; break; case VK_ADD: -- 2.30.2